Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add some features, fix a problem, improve the file name #22

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"pressr": "cross-env SSR=true vue-cli-service build",
"pressr-client": "cross-env SSR=true CLIENT=true vue-cli-service build",
"pressr-server": "cross-env SSR=true vue-cli-service build",
"pressr": "pnpm run pressr-server && pnpm run pressr-client",
"ssr": "node src/server.js",
"lint": "vue-cli-service lint"
},
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div id="app">
<div id="main">
<img alt="Vue logo" src="./assets/logo.png">
<HelloWorld msg="Welcome to Your Vue.js App"/>
</div>
Expand All @@ -17,7 +17,7 @@ export default {
</script>

<style>
#app {
#main {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
Expand Down
9 changes: 8 additions & 1 deletion src/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@ const express = require("express");
const { createSSRApp } = require("vue");
const { renderToString } = require("@vue/server-renderer");
const manifest = require("../dist/ssr-manifest.json");
const clientManifest = require("../client-dist/ssr-manifest.json");

const server = express();

const appPath = path.join(__dirname, "../dist", manifest["app.js"]);
const clientAppPath = path.join(__dirname, "../client-dist", clientManifest["client.js"]);
const App = require(appPath).default;

server.use("/img", express.static(path.join(__dirname, "../dist", "img")));
Expand All @@ -16,6 +18,10 @@ server.use(
"/favicon.ico",
express.static(path.join(__dirname, "../dist", "favicon.ico"))
);
server.use(
"/client.js",
express.static(clientAppPath)
);

server.get("*", async (req, res) => {
const app = createSSRApp(App);
Expand All @@ -26,9 +32,10 @@ server.get("*", async (req, res) => {
<head>
<title>Hello</title>
<link rel="stylesheet" href="${manifest["app.css"]}" />
<script src="/client.js"></script>
</head>
<body>
${appContent}
<div id="app">${appContent}</div>
</body>
</html>

Expand Down
File renamed without changes.
5 changes: 5 additions & 0 deletions src/ssr-client.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import { createSSRApp } from "vue";
import App from "./App.vue";


createSSRApp(App).mount("#app")
70 changes: 62 additions & 8 deletions vue.config.js
Original file line number Diff line number Diff line change
@@ -1,26 +1,80 @@
const ManifestPlugin = require("webpack-manifest-plugin");
const nodeExternals = require("webpack-node-externals");

const isClient = process.env.CLIENT === "true";
const isSSR = process.env.SSR === "true";

/**
* change the output dir for compiled files
* https://github.com/vuejs/vue-cli/issues/2202
*/
if (isClient) {
exports.outputDir = "client-dist";
}

exports.chainWebpack = webpackConfig => {
if (!process.env.SSR) {
if (!isSSR) {
// This is required for repl.it to play nicely with the Dev Server
webpackConfig.devServer.disableHostCheck(true);
return;
}

/**
* By default, vue-cli-service uses "app" as entry point for webpack,
* and the corresponding entry point file is "./src/main.js".
*
* When we compile the file on ssr client side, we just allow "client" as
* the only entry point for webpack, and the corresponding entry point
* file is "./src/ssr-client.js", so we should delete "app", otherwise,
* vue-cli-service will be failed because of the lack of "./src/main.js"
*/
webpackConfig
.entry("app")
.clear()
.add("./src/main.server.js");
.entryPoints
.delete("app");


webpackConfig.target("node");
webpackConfig.output.libraryTarget("commonjs2");
if (isClient) {
/**
* Compile ./src/ssr-client.js, and we will response the compiled file
* to browser in ./src/server.js.We won't import vue separately, so we
* also need to bundle vue into the compiled file.
*/
webpackConfig
.entry("client")
.clear()
.add("./src/ssr-client.js");
} else if (isSSR) {
/**
* Compile ./src/App.js, so we could require it in ./src/server.js.
*
* We already require "vue" in ./src/server.js, so we don't need to
* bundle it, but we still need to compile and bundle .css or .vue files,
* so we add `nodeExternals` below.
*/
webpackConfig
.entry("app")
.clear()
.add("./src/App.js");

webpackConfig.target("node");
webpackConfig.output.libraryTarget("commonjs2");
webpackConfig.externals(nodeExternals({ allowlist: /\.(css|vue)$/ }));

} else {
/**
* Compile for SPA
*/
webpackConfig
.entry("app")
.clear()
.add("./src/spa-client.js");
}

webpackConfig
.plugin("manifest")
.use(new ManifestPlugin({ fileName: "ssr-manifest.json" }));

webpackConfig.externals(nodeExternals({ allowlist: /\.(css|vue)$/ }));


webpackConfig.optimization.splitChunks(false).minimize(false);

Expand All @@ -31,4 +85,4 @@ exports.chainWebpack = webpackConfig => {
webpackConfig.plugins.delete("friendly-errors");

// console.log(webpackConfig.toConfig())
};
};