mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2025-01-23 17:18:36 +00:00
e47ff97ac6
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
11 lines
173 B
JavaScript
11 lines
173 B
JavaScript
const Dotenv = require('dotenv-webpack');
|
|
|
|
module.exports = {
|
|
lintOnSave: false,
|
|
compiler: true,
|
|
configureWebpack: {
|
|
plugins: [
|
|
new Dotenv(),
|
|
],
|
|
},
|
|
};
|