COLLECTED BY
Organization:
Internet Archive
Focused crawls are collections of frequently-updated webcrawl data from narrow (as opposed to broad or wide) web crawls, often focused on a single domain or subdomain.
The Wayback Machine - https://web.archive.org/web/20200530155219/https://github.com/topics/multi-page-application
Here are
28 public repositories
matching this topic...
🔧 A lightweight, flexible webpack setup with React for multi page application development
Updated
Mar 14, 2020
JavaScript
Updated
Apr 30, 2020
JavaScript
Multiple page application setup with Webpack using SASS, PostCSS, ES6+, etc
Updated
May 30, 2020
JavaScript
基于vue+webpack(+typescript)的示例项目
Updated
Mar 14, 2020
TypeScript
🚀 Set up a modern multiple-page app by running one command 🎨
Updated
Apr 16, 2020
JavaScript
A Vue multi-pages application boilerplate which is based on config created by vue-cli
Updated
May 6, 2017
JavaScript
🐑 A simple multi-page webapp boilerplate, with modern frontend tools
Updated
Mar 13, 2019
JavaScript
react and vue, single page and multi page, in one project
Updated
Mar 15, 2018
JavaScript
🐕 Powerful Multiple-Page Application template, gulp + es6 + pug + sass + auto-refresh + http proxy
Updated
Feb 5, 2019
JavaScript
multi-page and lazy-load webpack template
Updated
May 23, 2019
JavaScript
webpack 最佳实践,vue-cli 定制模板,同时兼容单页和多页开发
Updated
May 7, 2018
JavaScript
A collection of frontend/backend ES/TS project boilerplates.
Updated
May 30, 2020
TypeScript
Multiple page application setup with Webpack using PostCSS, ES6+, etc
Updated
May 30, 2020
JavaScript
Multiple page application setup with Webpack using SASS, PostCSS, TypeScript, etc
Updated
May 30, 2020
TypeScript
Vue2 & Webpack2 &Element-UI 多页面模板
Updated
Aug 11, 2017
JavaScript
Webpack config template for multi-page application with react
Updated
Jul 28, 2017
JavaScript
Employer Branding ad template
Updated
Mar 16, 2020
JavaScript
Updated
Feb 10, 2018
HTML
ReactJS: SimpleToast for MPA
Updated
Jan 21, 2020
JavaScript
My project for the Basic Informational Site assignment as part of the curriculum for the NodeJS course on The Odin Project.
# webpack-mpa-starter Starter project to bootstrap multi-page websites development with templating
Updated
Feb 25, 2018
JavaScript
PoC with React and Webpack for a multi-page application, JavaScript and TypeScript.
Updated
May 25, 2020
JavaScript
Updated
Feb 7, 2019
JavaScript
Multiple Page static file website using webpack starter template
Updated
Jun 25, 2017
JavaScript
My project for the Mini Message Board assignment as part of the curriculum for the NodeJS course on The Odin Project.
Improve this page
Add a description, image, and links to the
multi-page-application
topic page so that developers can more easily learn about it.
Curate this topic
Add this topic to your repo
To associate your repository with the
multi-page-application
topic, visit your repo's landing page and select "manage topics."
Learn more
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.
想新增一个alias,像vue脚手架默认填写的:
resolve: {
alias: {
'vue$': 'vue/dist/vue.esm.js',
'@': resolve('src')
}
},
即将@指向到某一个目录,比如app/web/目录,我在webpack.config.js文件添加了
module.exports = {
egg: true,
devtool: 'eval',
target: 'web',
entry: {
admin: 'app/web/page/admin/index.js'
},
cssExtract: true,
dll: ['vue', 'vue-router', 'vuex',