mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-27 10:02:59 +08:00
fix(desktop): build failing due to missing CSS
This commit is contained in:
parent
230ac7feeb
commit
cc9cb6f73a
@ -8,6 +8,14 @@ module.exports = {
|
|||||||
output: {
|
output: {
|
||||||
path: outputDir,
|
path: outputDir,
|
||||||
},
|
},
|
||||||
|
module: {
|
||||||
|
rules: [
|
||||||
|
{
|
||||||
|
test: /\.css$/i,
|
||||||
|
type: "asset/source"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
target: [ "node" ],
|
target: [ "node" ],
|
||||||
plugins: [
|
plugins: [
|
||||||
new NxAppWebpackPlugin({
|
new NxAppWebpackPlugin({
|
||||||
|
@ -8,6 +8,14 @@ module.exports = {
|
|||||||
output: {
|
output: {
|
||||||
path: join(__dirname, 'dist'),
|
path: join(__dirname, 'dist'),
|
||||||
},
|
},
|
||||||
|
module: {
|
||||||
|
rules: [
|
||||||
|
{
|
||||||
|
test: /\.css$/i,
|
||||||
|
type: "asset/source"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
plugins: [
|
plugins: [
|
||||||
new NxAppWebpackPlugin({
|
new NxAppWebpackPlugin({
|
||||||
target: 'node',
|
target: 'node',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user