mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2024-12-22 16:03:25 +00:00
3b48ac957f
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
12 lines
211 B
JavaScript
12 lines
211 B
JavaScript
const Dotenv = require('dotenv-webpack');
|
|
|
|
module.exports = {
|
|
lintOnSave: false,
|
|
runtimeCompiler: true,
|
|
outputDir: '../priv/static',
|
|
configureWebpack: {
|
|
plugins: [
|
|
new Dotenv(),
|
|
],
|
|
},
|
|
};
|