2016-10-26 14:46:32 +00:00
|
|
|
var path = require('path')
|
|
|
|
var config = require('../config')
|
|
|
|
var utils = require('./utils')
|
|
|
|
var projectRoot = path.resolve(__dirname, '../')
|
2018-12-12 17:03:50 +00:00
|
|
|
var ServiceWorkerWebpackPlugin = require('serviceworker-webpack-plugin')
|
2021-04-11 20:03:03 +00:00
|
|
|
var CopyPlugin = require('copy-webpack-plugin');
|
2016-10-26 14:46:32 +00: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
|
|
|
|
|
2019-12-03 15:32:46 +00:00
|
|
|
var now = Date.now()
|
|
|
|
|
2016-10-26 14:46:32 +00: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,
|
|
|
|
filename: '[name].js'
|
|
|
|
},
|
2019-04-28 19:03:03 +00:00
|
|
|
optimization: {
|
|
|
|
splitChunks: {
|
|
|
|
chunks: 'all'
|
|
|
|
}
|
|
|
|
},
|
2016-10-26 14:46:32 +00:00
|
|
|
resolve: {
|
2019-04-07 17:33:11 +00:00
|
|
|
extensions: ['.js', '.vue'],
|
|
|
|
modules: [
|
|
|
|
path.join(__dirname, '../node_modules')
|
|
|
|
],
|
2016-10-26 14:46:32 +00:00
|
|
|
alias: {
|
2017-02-21 10:48:08 +00:00
|
|
|
'vue$': 'vue/dist/vue.runtime.common',
|
2020-01-27 02:20:13 +00:00
|
|
|
'static': path.resolve(__dirname, '../static'),
|
2016-10-26 14:46:32 +00:00
|
|
|
'src': path.resolve(__dirname, '../src'),
|
|
|
|
'assets': path.resolve(__dirname, '../src/assets'),
|
|
|
|
'components': path.resolve(__dirname, '../src/components')
|
|
|
|
}
|
|
|
|
},
|
|
|
|
module: {
|
2017-03-10 10:11:49 +00:00
|
|
|
noParse: /node_modules\/localforage\/dist\/localforage.js/,
|
2019-04-07 17:33:11 +00:00
|
|
|
rules: [
|
2016-10-26 14:46:32 +00:00
|
|
|
{
|
2019-04-07 17:33:11 +00:00
|
|
|
enforce: 'pre',
|
|
|
|
test: /\.(js|vue)$/,
|
2016-10-26 14:46:32 +00:00
|
|
|
include: projectRoot,
|
2019-04-07 17:33:11 +00:00
|
|
|
exclude: /node_modules/,
|
|
|
|
use: {
|
|
|
|
loader: 'eslint-loader',
|
|
|
|
options: {
|
|
|
|
formatter: require('eslint-friendly-formatter'),
|
|
|
|
sourceMap: config.build.productionSourceMap,
|
|
|
|
extract: true
|
|
|
|
}
|
|
|
|
}
|
2016-10-26 14:46:32 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.vue$/,
|
2019-04-07 17:33:11 +00:00
|
|
|
use: 'vue-loader'
|
2016-10-26 14:46:32 +00:00
|
|
|
},
|
|
|
|
{
|
2018-08-27 18:25:00 +00:00
|
|
|
test: /\.jsx?$/,
|
2016-10-26 14:46:32 +00:00
|
|
|
include: projectRoot,
|
2019-04-07 17:33:11 +00:00
|
|
|
exclude: /node_modules\/(?!tributejs)/,
|
|
|
|
use: 'babel-loader'
|
2016-10-26 14:46:32 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
|
2019-04-07 17:33:11 +00:00
|
|
|
use: {
|
|
|
|
loader: 'url-loader',
|
|
|
|
options: {
|
|
|
|
limit: 10000,
|
|
|
|
name: utils.assetsPath('img/[name].[hash:7].[ext]')
|
|
|
|
}
|
2016-10-26 14:46:32 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
|
2019-04-07 17:33:11 +00:00
|
|
|
use: {
|
|
|
|
loader: 'url-loader',
|
|
|
|
options: {
|
|
|
|
limit: 10000,
|
|
|
|
name: utils.assetsPath('fonts/[name].[hash:7].[ext]')
|
|
|
|
}
|
2016-10-26 14:46:32 +00:00
|
|
|
}
|
2019-04-07 17:33:11 +00:00
|
|
|
},
|
2016-10-26 14:46:32 +00:00
|
|
|
]
|
2018-12-12 17:03:50 +00:00
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
new ServiceWorkerWebpackPlugin({
|
2019-01-28 16:52:01 +00:00
|
|
|
entry: path.join(__dirname, '..', 'src/sw.js'),
|
|
|
|
filename: 'sw-pleroma.js'
|
2021-04-11 20:03:03 +00:00
|
|
|
}),
|
|
|
|
// This copies Ruffle's WASM to a directory so that JS side can access it
|
|
|
|
new CopyPlugin({
|
|
|
|
patterns: [
|
|
|
|
{
|
|
|
|
from: "node_modules/ruffle-mirror/*",
|
|
|
|
to: "static/ruffle",
|
|
|
|
flatten: true
|
|
|
|
},
|
|
|
|
],
|
|
|
|
options: {
|
|
|
|
concurrency: 100,
|
|
|
|
},
|
2018-12-12 17:03:50 +00:00
|
|
|
})
|
|
|
|
]
|
2016-10-26 14:46:32 +00:00
|
|
|
}
|