feature: chained html and pug loader to support parameter injection
This commit is contained in:
parent
3a321c2b00
commit
3cb7dbeeb1
1
.gitignore
vendored
1
.gitignore
vendored
@ -2,3 +2,4 @@
|
|||||||
/src/config.json
|
/src/config.json
|
||||||
*.iml
|
*.iml
|
||||||
*.swp
|
*.swp
|
||||||
|
dist
|
||||||
|
7570
package-lock.json
generated
Normal file
7570
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
19
package.json
19
package.json
@ -9,16 +9,17 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@babel/core": "^7.6.4",
|
"@babel/core": "^7.6.4",
|
||||||
"babel-loader": "^8.0.6",
|
"babel-loader": "^8.0.6",
|
||||||
|
"css-loader": "^3.2.0",
|
||||||
|
"file-loader": "^4.2.0",
|
||||||
|
"html-loader": "^0.5.5",
|
||||||
|
"html-webpack-plugin": "^3.2.0",
|
||||||
|
"mini-css-extract-plugin": "^0.8.0",
|
||||||
|
"node-sass": "^4.13.0",
|
||||||
|
"pug": "^2.0.4",
|
||||||
|
"pug-html-loader": "^1.1.5",
|
||||||
|
"sass-loader": "^8.0.0",
|
||||||
"webpack": "^4.41.2",
|
"webpack": "^4.41.2",
|
||||||
"webpack-cli": "^3.3.9",
|
"webpack-cli": "^3.3.9",
|
||||||
"webpack-dev-server": "^3.9.0",
|
"webpack-dev-server": "^3.9.0"
|
||||||
"html-webpack-plugin": "^3.2.0",
|
|
||||||
"pug": "^2.0.4",
|
|
||||||
"pug-loader": "^2.4.0",
|
|
||||||
"css-loader": "^3.2.0",
|
|
||||||
"node-sass": "^4.13.0",
|
|
||||||
"sass-loader": "^8.0.0",
|
|
||||||
"mini-css-extract-plugin": "^0.8.0",
|
|
||||||
"file-loader": "^4.2.0"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -22,7 +22,27 @@ const config = {
|
|||||||
rules: [
|
rules: [
|
||||||
{
|
{
|
||||||
test: /\.pug$/,
|
test: /\.pug$/,
|
||||||
use: "pug-loader"
|
use: [
|
||||||
|
{ loader: "html-loader" },
|
||||||
|
{ loader: "pug-html-loader",
|
||||||
|
options: {
|
||||||
|
data: {
|
||||||
|
cdn: "https://cdn.happy-dev.fr",
|
||||||
|
xmpp: "https://jabber.happy-dev.fr/http-bind/",
|
||||||
|
authority: "http://127.0.0.1:8000/openid/",
|
||||||
|
endpoints: {
|
||||||
|
businessproviders: "http://127.0.0.1:8000/businessproviders/",
|
||||||
|
circles: "http://127.0.0.1:8000/circles/",
|
||||||
|
groups: "http://127.0.0.1:8000/groups/",
|
||||||
|
joboffers: "http://127.0.0.1:8000/job-offers/",
|
||||||
|
projects: "http://127.0.0.1:8000/projects/",
|
||||||
|
skills: "http://127.0.0.1:8000/skills/",
|
||||||
|
users: "http://127.0.0.1:8000/users/"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
test: /\.js$/,
|
test: /\.js$/,
|
||||||
|
Loading…
Reference in New Issue
Block a user