1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/config/webpack/webpack.config.js
2022-03-22 11:27:18 +01:00

61 lines
1.9 KiB
JavaScript

const { webpackConfig, merge } = require('shakapacker');
const webpack = require('webpack');
const path = require('path');
const ReactRefreshWebpackPlugin = require('@pmmmwh/react-refresh-webpack-plugin');
const htmlErb = require('./modules/html_erb');
const jsErb = require('./modules/js_erb');
const sass = require('./modules/sass');
const sassErb = require('./modules/sass_erb');
const html = require('./modules/html');
const uiTour = require('./modules/ui-tour');
const hmr = require('./modules/hmr');
const isDevelopment = process.env.NODE_ENV !== 'production';
// See the shakacode/shakapacker README and docs directory for advice on customizing your webpackConfig.
const customConfig = {
plugins: [
new webpack.ProvidePlugin({
$: 'jquery',
jQuery: 'jquery',
'window.jQuery': 'jquery',
_: 'lodash',
Hone: 'hone',
Tether: 'tether',
Holder: 'holderjs',
'window.CodeMirror': 'codemirror',
MediumEditor: 'medium-editor',
Humanize: path.resolve(path.join(__dirname, '../../app/frontend/src/javascript/lib/humanize.js')),
GTM: path.resolve(path.join(__dirname, '../../app/frontend/src/javascript/lib/gtm.js')),
moment: 'moment',
Application: [path.resolve(path.join(__dirname, '../../app/frontend/src/javascript/app.js')), 'Application'],
process: 'process/browser'
}),
isDevelopment && new ReactRefreshWebpackPlugin()
],
module: {
rules: [
jsErb,
htmlErb,
sassErb,
html,
sass,
uiTour,
hmr
]
},
resolve: {
extensions: ['.jpg', '.jpeg', '.png', '.gif', '.tiff', '.ico',
'.svg', '.eot', '.otf', '.ttf', '.woff', '.woff2',
'.tsx', '.ts', '.erb', '.html', '.mjs', '.js', '.jsx',
'.sass', '.scss', '.css', '.module.sass', '.module.scss', '.module.css'],
fallback: {
assert: require.resolve('assert')
}
}
};
module.exports = merge(webpackConfig, customConfig);