2018-05-19 10:19:21 +02:00
|
|
|
const Dotenv = require('dotenv-webpack');
|
2018-05-18 11:28:29 +02:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
lintOnSave: false,
|
2018-07-04 14:29:17 +02:00
|
|
|
runtimeCompiler: true,
|
2018-05-18 11:28:29 +02:00
|
|
|
configureWebpack: {
|
|
|
|
plugins: [
|
2018-05-19 10:19:21 +02:00
|
|
|
new Dotenv(),
|
2018-05-18 11:28:29 +02:00
|
|
|
],
|
|
|
|
},
|
|
|
|
};
|