3b48ac957f
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
13 lines
211 B
JavaScript
13 lines
211 B
JavaScript
const Dotenv = require('dotenv-webpack');
|
|
|
|
module.exports = {
|
|
lintOnSave: false,
|
|
runtimeCompiler: true,
|
|
outputDir: '../priv/static',
|
|
configureWebpack: {
|
|
plugins: [
|
|
new Dotenv(),
|
|
],
|
|
},
|
|
};
|