Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wiki-js
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
wiki-js
Commits
7f67c727
You need to sign in or sign up before continuing.
Commit
7f67c727
authored
Aug 24, 2019
by
Nick
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: missing vuetify-loader in webpack prod
parent
d3e693ab
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
54 additions
and
10 deletions
+54
-10
webpack.prod.js
dev/webpack/webpack.prod.js
+6
-4
master.pug
server/views/legacy/master.pug
+16
-2
master.pug
server/views/master.pug
+16
-2
setup.pug
server/views/setup.pug
+16
-2
No files found.
dev/webpack/webpack.prod.js
View file @
7f67c727
...
@@ -5,6 +5,7 @@ const yargs = require('yargs').argv
...
@@ -5,6 +5,7 @@ const yargs = require('yargs').argv
const
_
=
require
(
'lodash'
)
const
_
=
require
(
'lodash'
)
const
Fiber
=
require
(
'fibers'
)
const
Fiber
=
require
(
'fibers'
)
const
{
VueLoaderPlugin
}
=
require
(
'vue-loader'
)
const
{
CleanWebpackPlugin
}
=
require
(
'clean-webpack-plugin'
)
const
{
CleanWebpackPlugin
}
=
require
(
'clean-webpack-plugin'
)
const
CopyWebpackPlugin
=
require
(
'copy-webpack-plugin'
)
const
CopyWebpackPlugin
=
require
(
'copy-webpack-plugin'
)
const
HtmlWebpackPlugin
=
require
(
'html-webpack-plugin'
)
const
HtmlWebpackPlugin
=
require
(
'html-webpack-plugin'
)
...
@@ -12,9 +13,9 @@ const HtmlWebpackPugPlugin = require('html-webpack-pug-plugin')
...
@@ -12,9 +13,9 @@ const HtmlWebpackPugPlugin = require('html-webpack-pug-plugin')
const
MiniCssExtractPlugin
=
require
(
'mini-css-extract-plugin'
)
const
MiniCssExtractPlugin
=
require
(
'mini-css-extract-plugin'
)
const
OptimizeCssAssetsPlugin
=
require
(
'optimize-css-assets-webpack-plugin'
)
const
OptimizeCssAssetsPlugin
=
require
(
'optimize-css-assets-webpack-plugin'
)
const
ScriptExtHtmlWebpackPlugin
=
require
(
'script-ext-html-webpack-plugin'
)
const
ScriptExtHtmlWebpackPlugin
=
require
(
'script-ext-html-webpack-plugin'
)
const
SimpleProgressWebpackPlugin
=
require
(
'simple-progress-webpack-plugin'
)
const
VuetifyLoaderPlugin
=
require
(
'vuetify-loader/lib/plugin'
)
const
WebpackBarPlugin
=
require
(
'webpackbar'
)
const
SriWebpackPlugin
=
require
(
'webpack-subresource-integrity'
)
const
SriWebpackPlugin
=
require
(
'webpack-subresource-integrity'
)
const
{
VueLoaderPlugin
}
=
require
(
'vue-loader'
)
const
babelConfig
=
fs
.
readJsonSync
(
path
.
join
(
process
.
cwd
(),
'.babelrc'
))
const
babelConfig
=
fs
.
readJsonSync
(
path
.
join
(
process
.
cwd
(),
'.babelrc'
))
const
cacheDir
=
'.webpack-cache/cache'
const
cacheDir
=
'.webpack-cache/cache'
...
@@ -194,6 +195,7 @@ module.exports = {
...
@@ -194,6 +195,7 @@ module.exports = {
},
},
plugins
:
[
plugins
:
[
new
VueLoaderPlugin
(),
new
VueLoaderPlugin
(),
new
VuetifyLoaderPlugin
(),
new
webpack
.
BannerPlugin
(
'Wiki.js - wiki.js.org - Licensed under AGPL'
),
new
webpack
.
BannerPlugin
(
'Wiki.js - wiki.js.org - Licensed under AGPL'
),
new
CopyWebpackPlugin
([
new
CopyWebpackPlugin
([
{
from
:
'client/static'
},
{
from
:
'client/static'
},
...
@@ -234,8 +236,8 @@ module.exports = {
...
@@ -234,8 +236,8 @@ module.exports = {
hashFuncNames
:
[
'sha256'
,
'sha512'
],
hashFuncNames
:
[
'sha256'
,
'sha512'
],
enabled
:
true
enabled
:
true
}),
}),
new
SimpleProgressWebpack
Plugin
({
new
WebpackBar
Plugin
({
format
:
'expanded
'
name
:
'Client Assets
'
}),
}),
new
CleanWebpackPlugin
(),
new
CleanWebpackPlugin
(),
new
OptimizeCssAssetsPlugin
({
new
OptimizeCssAssetsPlugin
({
...
...
server/views/legacy/master.pug
View file @
7f67c727
...
@@ -44,6 +44,16 @@ html
...
@@ -44,6 +44,16 @@ html
//- CSS
//- CSS
link(
type='text/css'
rel='stylesheet'
href='/css/legacy.b8600c4bfa9b6d21f54c.css'
integrity='sha256-c43Iog8YvFPD9EQvD11jnxb0IYOFUtxYA2ABtJIQPmM= sha512-g1nj/OKi7ykTfsdrhgu4lqOqyKMZBvAGvjS98r9cXI96DaciNfgXtlLIGmR3wgQuGrV3n3rCs94BB6lK9OI7qA=='
crossorigin='use-credentials'
)
script(
script(
crossorigin='anonymous'
crossorigin='anonymous'
src='https://polyfill.io/v3/polyfill.min.js?features=EventSource'
src='https://polyfill.io/v3/polyfill.min.js?features=EventSource'
...
@@ -54,14 +64,18 @@ html
...
@@ -54,14 +64,18 @@ html
script(
script(
type='text/javascript'
type='text/javascript'
src='/js/runtime.js'
src='/js/runtime.fc95297b6e8ae6e2e003.js'
integrity='sha256-6bZfGqlPATFeFRP90SGQYPuIILZahs+tXrS/eQdEUzc= sha512-tBIg4dA1HmUAT8xl3YuZu9eyiB1KWmSkI74kM2bi+BzZe12YXogJ5PHNzxb+Cnw6fjavInmnljB4X1QFzumrUw=='
crossorigin='use-credentials'
)
)
script(
script(
type='text/javascript'
type='text/javascript'
src='/js/legacy.js'
src='/js/legacy.b8600c4bfa9b6d21f54c.js'
integrity='sha256-KYTyzCk08U1fUx2pAcphdJOBWcWNe3m4jAcIeeZJX2U= sha512-vOBKbPZkD3HfjP2MfM6O4yhXBXZ5WJNzukJVZMtQKw84yvUePUnJstJ6t90jy2NPO9UTaEpF3J2SNh+3DBofKQ=='
crossorigin='use-credentials'
)
)
...
...
server/views/master.pug
View file @
7f67c727
...
@@ -48,19 +48,33 @@ html(lang=siteConfig.lang)
...
@@ -48,19 +48,33 @@ html(lang=siteConfig.lang)
//- CSS
//- CSS
link(
type='text/css'
rel='stylesheet'
href='/css/app.303f1e1fbb500ede4cef.css'
integrity='sha256-wmeXKjjPKSCWT+1pyn38uD5929SyTO0vx1rq3xjLFcE= sha512-Qjh++VFQQnL0y3E0WAzvHmpT9UwTwtQBoo9vwZu02OqxG9OXRGCEJWzRPLkn/fRVP6wrlBPMSz/DVaAaeUhW1w=='
crossorigin='use-credentials'
)
//- JS
//- JS
script(
script(
type='text/javascript'
type='text/javascript'
src='/js/runtime.js'
src='/js/runtime.fc95297b6e8ae6e2e003.js'
integrity='sha256-6bZfGqlPATFeFRP90SGQYPuIILZahs+tXrS/eQdEUzc= sha512-tBIg4dA1HmUAT8xl3YuZu9eyiB1KWmSkI74kM2bi+BzZe12YXogJ5PHNzxb+Cnw6fjavInmnljB4X1QFzumrUw=='
crossorigin='use-credentials'
)
)
script(
script(
type='text/javascript'
type='text/javascript'
src='/js/app.js'
src='/js/app.303f1e1fbb500ede4cef.js'
integrity='sha256-cSXcjyRtFGAvQ5BnRPbLxcr3itR1X8wgcNO5RlvMLEU= sha512-dy3W6c8IlJpAfGpMi3FibzOI6g1o65CpsEWgIZU/Fl/l0ofUxrxXP3xpfNuAaLgmQfc5l+x3IomXmeM8OBEIUQ=='
crossorigin='use-credentials'
)
)
...
...
server/views/setup.pug
View file @
7f67c727
...
@@ -24,19 +24,33 @@ html
...
@@ -24,19 +24,33 @@ html
//- CSS
//- CSS
link(
type='text/css'
rel='stylesheet'
href='/css/setup.35a646a90c01e5e5f6f5.css'
integrity='sha256-HNu607cPBzAhzYo8xjvM307b5k18J+Vr2OWTFlMuiIw= sha512-b0KTirC8Myjz1FnIYY9fFrYoexiVj7/3N3TeuHU+IfCx2ZM+uMilVoZPe4sBC+xXTuuJIoJWwgjH3ZI1Lt6eAQ=='
crossorigin='use-credentials'
)
//- JS
//- JS
script(
script(
type='text/javascript'
type='text/javascript'
src='/js/runtime.js'
src='/js/runtime.fc95297b6e8ae6e2e003.js'
integrity='sha256-6bZfGqlPATFeFRP90SGQYPuIILZahs+tXrS/eQdEUzc= sha512-tBIg4dA1HmUAT8xl3YuZu9eyiB1KWmSkI74kM2bi+BzZe12YXogJ5PHNzxb+Cnw6fjavInmnljB4X1QFzumrUw=='
crossorigin='use-credentials'
)
)
script(
script(
type='text/javascript'
type='text/javascript'
src='/js/setup.js'
src='/js/setup.35a646a90c01e5e5f6f5.js'
integrity='sha256-DS7oIW0jf1JjTIBH/NfUxFTx9ZCUd67yy0OdZ4+PqZc= sha512-dHe0IsiBCGYirAl+JqFIjQEtG/sV/QShDoppFskoqunXxGnzqM1zphxfRCX8ooKLaQrGfW9F8HNBVsUSK02HNg=='
crossorigin='use-credentials'
)
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment