Run prettier through everything.
This commit is contained in:
@@ -2,19 +2,19 @@
|
||||
module.exports = {
|
||||
reactStrictMode: true,
|
||||
images: {
|
||||
domains: ["avatars.githubusercontent.com"],
|
||||
domains: ['avatars.githubusercontent.com']
|
||||
},
|
||||
webpack(config, { isServer }) {
|
||||
config.resolve.alias["vscode"] = require.resolve(
|
||||
"@codingame/monaco-languageclient/lib/vscode-compatibility"
|
||||
);
|
||||
config.resolve.alias['vscode'] = require.resolve(
|
||||
'@codingame/monaco-languageclient/lib/vscode-compatibility'
|
||||
)
|
||||
if (!isServer) {
|
||||
config.resolve.fallback.fs = false;
|
||||
config.resolve.fallback.fs = false
|
||||
}
|
||||
config.module.rules.push({
|
||||
test: /\.md$/,
|
||||
use: "raw-loader",
|
||||
});
|
||||
return config;
|
||||
},
|
||||
};
|
||||
use: 'raw-loader'
|
||||
})
|
||||
return config
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user