2018-05-19 08:19:21 +00:00
|
|
|
const Dotenv = require('dotenv-webpack');
|
2018-05-18 09:28:29 +00:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
lintOnSave: false,
|
|
|
|
compiler: true,
|
|
|
|
configureWebpack: {
|
|
|
|
plugins: [
|
2018-05-19 08:19:21 +00:00
|
|
|
new Dotenv(),
|
2018-05-18 09:28:29 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
};
|