mirror of
https://github.com/aleleba/create-react-ssr.git
synced 2025-01-09 05:26:58 -06:00
PR-536602: making more changing to fix css.
This commit is contained in:
parent
5780bae041
commit
27e53ed20b
@ -30,9 +30,9 @@ const routesUrls = routes.map( route => route.path);
|
||||
|
||||
const app = express();
|
||||
|
||||
// @ts-ignore:next-line
|
||||
const compiler = webpack(webpackConfig);
|
||||
if(env === 'development'){
|
||||
// @ts-ignore:next-line
|
||||
const compiler = webpack(webpackConfig);
|
||||
const serverConfig = {
|
||||
serverSideRender: true,
|
||||
publicPath: webpackConfig.output?.publicPath,
|
||||
@ -72,6 +72,8 @@ const setResponse = (html, preloadedState, manifest) => {
|
||||
const mainBuild = manifest ? manifest['frontend.js'] : 'assets/app.js';
|
||||
const vendorBuild = manifest ? manifest['vendors.js'] : 'assets/vendor.js';
|
||||
const manifestJson = manifest ? `<link rel="manifest" href="${manifest['manifest.json']}">` : '';
|
||||
const memoryFs = compiler.outputFileSystem
|
||||
const haveVendor = haveVendorsCss(manifest, memoryFs)
|
||||
|
||||
return(`
|
||||
<!DOCTYPE html>
|
||||
@ -84,7 +86,7 @@ const setResponse = (html, preloadedState, manifest) => {
|
||||
<meta name="theme-color" content="#000000">
|
||||
${manifestJson}
|
||||
<link href="${mainStyles}" rel="stylesheet" type="text/css"></link>
|
||||
${haveVendorsCss() ? `<link href="${vendorStyles}" rel="stylesheet" type="text/css"></link>` : ''}
|
||||
${haveVendor ? `<link href="${vendorStyles}" rel="stylesheet" type="text/css"></link>` : ''}
|
||||
<title>App</title>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -1,20 +1,25 @@
|
||||
import fs from 'fs';
|
||||
import config from '../../config';
|
||||
|
||||
const { env } = config
|
||||
|
||||
export const getHashManifest = () => {
|
||||
try {
|
||||
const baseUrl = __dirname.replace(/\/server(.*)/,'');
|
||||
const fullURL = `${baseUrl}/assets/manifest-hash.json` ;
|
||||
return JSON.parse(fs.readFileSync(fullURL).toString());
|
||||
const fullURL = `${baseUrl}/assets/manifest-hash.json`;
|
||||
const readFileData = JSON.parse(fs.readFileSync(fullURL).toString());
|
||||
return readFileData
|
||||
}catch(err){
|
||||
console.error(err);
|
||||
}
|
||||
};
|
||||
|
||||
export const haveVendorsCss = () => {
|
||||
export const haveVendorsCss = (manifest, memoryFs) => {
|
||||
try {
|
||||
const baseUrl = __dirname.replace(/\/server(.*)/,'');
|
||||
const fullURL = `${baseUrl}/assets/vendors.css` ;
|
||||
fs.readFileSync(fullURL).toString();
|
||||
const fullURL = `${baseUrl}${manifest ? manifest['vendors.css'] : '/build/assets/vendors.css'}`;
|
||||
env === 'production' && fs.readFileSync(fullURL).toString();
|
||||
env === 'development' && memoryFs.readFileSync(fullURL).toString();
|
||||
return true
|
||||
}catch(err){
|
||||
// console.error(err);
|
||||
|
@ -198,7 +198,7 @@ const serverConfig = {
|
||||
filename: '[path][base].gz',
|
||||
}),
|
||||
new MiniCssExtractPlugin({
|
||||
filename: 'assets/[name]/app-[fullhash].css',
|
||||
filename: 'assets/[name]-[fullhash].css',
|
||||
}),
|
||||
new WebpackManifestPlugin({
|
||||
fileName: 'assets/manifest-hash.json',
|
||||
|
Loading…
Reference in New Issue
Block a user