pleroma-fe/build/webpack.base.conf.js

130 lines
3.7 KiB
JavaScript
Raw Normal View History

2016-10-26 16:46:32 +02:00
var path = require('path')
var config = require('../config')
var utils = require('./utils')
var projectRoot = path.resolve(__dirname, '../')
2022-08-16 00:01:33 +02:00
var ServiceWorkerWebpackPlugin = require('serviceworker-webpack5-plugin')
var CopyPlugin = require('copy-webpack-plugin');
2022-03-16 21:02:44 +01:00
var { VueLoaderPlugin } = require('vue-loader')
2022-07-31 11:15:44 +02:00
var ESLintPlugin = require('eslint-webpack-plugin');
2023-01-09 19:02:16 +01:00
var StylelintPlugin = require('stylelint-webpack-plugin');
2016-10-26 16:46:32 +02:00
var env = process.env.NODE_ENV
// check env & config/index.js to decide weither to enable CSS Sourcemaps for the
// various preprocessor loaders added to vue-loader at the end of this file
var cssSourceMapDev = (env === 'development' && config.dev.cssSourceMap)
var cssSourceMapProd = (env === 'production' && config.build.productionSourceMap)
var useCssSourceMap = cssSourceMapDev || cssSourceMapProd
var now = Date.now()
2016-10-26 16:46:32 +02:00
module.exports = {
entry: {
app: './src/main.js'
},
output: {
path: config.build.assetsRoot,
publicPath: process.env.NODE_ENV === 'production' ? config.build.assetsPublicPath : config.dev.assetsPublicPath,
2022-09-21 05:13:07 +02:00
filename: '[name].js',
chunkFilename: '[name].js'
2016-10-26 16:46:32 +02:00
},
2019-04-28 21:03:03 +02:00
optimization: {
splitChunks: {
chunks: 'all'
}
},
2016-10-26 16:46:32 +02:00
resolve: {
extensions: ['.mjs', '.js', '.jsx', '.vue'],
modules: [
path.join(__dirname, '../node_modules')
],
2016-10-26 16:46:32 +02:00
alias: {
'static': path.resolve(__dirname, '../static'),
2016-10-26 16:46:32 +02:00
'src': path.resolve(__dirname, '../src'),
'assets': path.resolve(__dirname, '../src/assets'),
2022-04-06 10:30:42 +02:00
'components': path.resolve(__dirname, '../src/components'),
'vue-i18n': 'vue-i18n/dist/vue-i18n.runtime.esm-bundler.js'
2022-08-16 00:01:33 +02:00
},
fallback: {
'querystring': require.resolve('querystring-es3'),
'url': require.resolve('url/')
2016-10-26 16:46:32 +02:00
}
},
module: {
2017-03-10 11:11:49 +01:00
noParse: /node_modules\/localforage\/dist\/localforage.js/,
rules: [
2022-04-06 14:45:44 +02:00
{
enforce: 'post',
test: /\.(json5?|ya?ml)$/, // target json, json5, yaml and yml files
type: 'javascript/auto',
loader: '@intlify/vue-i18n-loader',
include: [ // Use `Rule.include` to specify the files of locale messages to be pre-compiled
path.resolve(__dirname, '../src/i18n')
]
},
2016-10-26 16:46:32 +02:00
{
test: /\.vue$/,
2022-03-16 21:02:44 +01:00
loader: 'vue-loader',
options: {
compilerOptions: {
2022-03-29 18:55:30 +02:00
isCustomElement(tag) {
if (tag === 'pinch-zoom') {
return true
}
return false
2022-03-16 21:02:44 +01:00
}
}
}
2016-10-26 16:46:32 +02:00
},
{
2018-08-27 20:25:00 +02:00
test: /\.jsx?$/,
2016-10-26 16:46:32 +02:00
include: projectRoot,
exclude: /node_modules\/(?!tributejs)/,
use: 'babel-loader'
2016-10-26 16:46:32 +02:00
},
{
test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
2022-08-16 00:23:41 +02:00
type: 'asset',
generator: {
filename: utils.assetsPath('img/[name].[hash:7][ext]')
2016-10-26 16:46:32 +02:00
}
},
{
test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
2022-08-16 00:23:41 +02:00
type: 'asset',
generator: {
filename: utils.assetsPath('fonts/[name].[hash:7][ext]')
2016-10-26 16:46:32 +02:00
}
},
{
test: /\.mjs$/,
include: /node_modules/,
type: 'javascript/auto'
}
2016-10-26 16:46:32 +02:00
]
2018-12-12 18:03:50 +01:00
},
plugins: [
new ServiceWorkerWebpackPlugin({
entry: path.join(__dirname, '..', 'src/sw.js'),
filename: 'sw-pleroma.js'
}),
2022-07-31 11:15:44 +02:00
new ESLintPlugin({
extensions: ['js', 'vue'],
formatter: require('eslint-formatter-friendly')
}),
2023-01-09 19:02:16 +01:00
new StylelintPlugin({}),
new VueLoaderPlugin(),
// This copies Ruffle's WASM to a directory so that JS side can access it
new CopyPlugin({
patterns: [
{
2022-08-16 00:38:34 +02:00
from: "node_modules/@ruffle-rs/ruffle/**/*",
to: "static/ruffle/[name][ext]"
},
],
options: {
concurrency: 100,
},
2018-12-12 18:03:50 +01:00
})
]
2016-10-26 16:46:32 +02:00
}