forked from AkkomaGang/akkoma-fe
cd4ad2df11
* origin/develop: (475 commits) Apply 1 suggestion(s) to 1 file(s) Update dependency @ungap/event-target to v0.2.3 Update package.json fix broken icons after FA upgrade Update Font Awesome Update dependency webpack-dev-middleware to v3.7.3 Update dependency vuelidate to v0.7.7 Pin dependency @kazvmoe-infra/pinch-zoom-element to 1.2.0 lint Make media modal buttons larger Add English translation for hide tooltip Add hide button to media modal Lint Prevent hiding media viewer if swiped over SwipeClick Fix webkit image blurs Fix video in media modal not displaying properly Add changelog for https://git.pleroma.social/pleroma/pleroma-fe/-/merge_requests/1403 Remove image box-shadow in media modal Clean up debug code for image pinch zoom Bump @kazvmoe-infra/pinch-zoom-element to 1.2.0 on npm ...
114 lines
3.1 KiB
JavaScript
114 lines
3.1 KiB
JavaScript
var path = require('path')
|
|
var config = require('../config')
|
|
var utils = require('./utils')
|
|
var projectRoot = path.resolve(__dirname, '../')
|
|
var ServiceWorkerWebpackPlugin = require('serviceworker-webpack-plugin')
|
|
var { VueLoaderPlugin } = require('vue-loader')
|
|
var CopyPlugin = require('copy-webpack-plugin');
|
|
|
|
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()
|
|
|
|
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'
|
|
},
|
|
optimization: {
|
|
splitChunks: {
|
|
chunks: 'all'
|
|
}
|
|
},
|
|
resolve: {
|
|
extensions: ['.js', '.vue', '.jsx'],
|
|
modules: [
|
|
path.join(__dirname, '../node_modules')
|
|
],
|
|
alias: {
|
|
vue: "@vue/runtime-dom",
|
|
'static': path.resolve(__dirname, '../static'),
|
|
'src': path.resolve(__dirname, '../src'),
|
|
'assets': path.resolve(__dirname, '../src/assets'),
|
|
'components': path.resolve(__dirname, '../src/components')
|
|
}
|
|
},
|
|
module: {
|
|
noParse: /node_modules\/localforage\/dist\/localforage.js/,
|
|
rules: [
|
|
{
|
|
enforce: 'pre',
|
|
test: /\.(js|vue)$/,
|
|
include: projectRoot,
|
|
exclude: /node_modules/,
|
|
use: {
|
|
loader: 'eslint-loader',
|
|
options: {
|
|
formatter: require('eslint-friendly-formatter'),
|
|
sourceMap: config.build.productionSourceMap,
|
|
extract: true
|
|
}
|
|
}
|
|
},
|
|
{
|
|
test: /\.vue$/,
|
|
use: 'vue-loader'
|
|
},
|
|
{
|
|
test: /\.jsx?$/,
|
|
include: projectRoot,
|
|
exclude: /node_modules\/(?!tributejs)/,
|
|
use: 'babel-loader'
|
|
},
|
|
{
|
|
test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
|
|
use: {
|
|
loader: 'url-loader',
|
|
options: {
|
|
limit: 10000,
|
|
name: utils.assetsPath('img/[name].[hash:7].[ext]')
|
|
}
|
|
}
|
|
},
|
|
{
|
|
test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
|
|
use: {
|
|
loader: 'url-loader',
|
|
options: {
|
|
limit: 10000,
|
|
name: utils.assetsPath('fonts/[name].[hash:7].[ext]')
|
|
}
|
|
}
|
|
},
|
|
]
|
|
},
|
|
plugins: [
|
|
new ServiceWorkerWebpackPlugin({
|
|
entry: path.join(__dirname, '..', 'src/sw.js'),
|
|
filename: 'sw-pleroma.js'
|
|
}),
|
|
new VueLoaderPlugin(),
|
|
// 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,
|
|
},
|
|
})
|
|
]
|
|
}
|