All Projects → b5156 → webpack-multiple-page-boilerplate

b5156 / webpack-multiple-page-boilerplate

Licence: other
webpack-multiple-page-boilerplate

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
CSS
56736 projects

Projects that are alternatives of or similar to webpack-multiple-page-boilerplate

Lovelace Multiple Entity Row
Show multiple entity states and attributes on entity rows in Home Assistant's Lovelace UI
Stars: ✭ 273 (+1606.25%)
Mutual labels:  entity, multiple
Half-Life-Resurgence
Recreation & expansion of NPCs, entities, and weapons from the Half-Life series into Garry's Mod!
Stars: ✭ 52 (+225%)
Mutual labels:  entity
typeorm-factory
Typeorm factory that makes testing easier
Stars: ✭ 28 (+75%)
Mutual labels:  entity
Multiple-collectionView-in-Multiple-tableView-cells
UICollectionView is embed in UITableViewCell. The collection views are horizontal scrollable. The UITableView can have a section title for each UICollectionView and the number of UICollectionView is equal to the number of sections.
Stars: ✭ 23 (+43.75%)
Mutual labels:  multiple
django-querysetsequence
Chain multiple (disparate) QuerySets in Django
Stars: ✭ 92 (+475%)
Mutual labels:  multiple
ECS-Phyllotaxis
Learning ECS - 100k Cubes in Phyllotaxis pattern
Stars: ✭ 17 (+6.25%)
Mutual labels:  entity
Parceler
简单的Bundle数据注入框架
Stars: ✭ 107 (+568.75%)
Mutual labels:  entity
SDK-python
SAP Conversational AI official SDK for Python
Stars: ✭ 22 (+37.5%)
Mutual labels:  entity
spinnies
Node.js module to create and manage multiple spinners in command-line interface programs
Stars: ✭ 111 (+593.75%)
Mutual labels:  multiple
springboot-learn
🚍 SpringBoot的各种技术集成,使用Gradle进行多项目的聚合管理。
Stars: ✭ 15 (-6.25%)
Mutual labels:  multiple
ee.Screen
Takes screenshots of web pages for the list of URLs. Various resolutions, multiple formats (JPG, PDF, PNG and TXT)
Stars: ✭ 19 (+18.75%)
Mutual labels:  multiple
nova-filepond
A Nova field for uploading File, Image and Video using Filepond.
Stars: ✭ 36 (+125%)
Mutual labels:  multiple
Symfony-code-snippets
Over 100 Symfony Code Snippets for PhP code And Over 80 Twig Code Snippets. Just type the letters 'sf' to get a list of all available Symfony Code Snippets. For Twig Just Type the Tag name and you will get AutoCompletion.
Stars: ✭ 15 (-6.25%)
Mutual labels:  entity
MultiObjectTracker
Advanced multiple object tracker using dlib and OpenCV.
Stars: ✭ 56 (+250%)
Mutual labels:  multiple
Beetle.js
🪲 Javascript ORM, manage your data easily.
Stars: ✭ 53 (+231.25%)
Mutual labels:  entity
DynamicEntitySummarization-DynES
Dynamic Entity Summarization (DynES)
Stars: ✭ 21 (+31.25%)
Mutual labels:  entity
weedow-searchy
Automatically exposes web services over HTTP to search for Entity-related data using a powerful query language
Stars: ✭ 21 (+31.25%)
Mutual labels:  entity
data
NGXS Persistence API
Stars: ✭ 82 (+412.5%)
Mutual labels:  entity
Entitas-Redux
An entity-component framework for Unity with code generation and visual debugging
Stars: ✭ 84 (+425%)
Mutual labels:  entity
MultiFontViewKotlin-Android
MultiFontViewKotlin library can be used to select custom fonts for the view dynamically in your XML
Stars: ✭ 13 (-18.75%)
Mutual labels:  multiple

webpack multiple page boilerplate

This is a webpack multiple page boilerplate,we don't need router.

这是一个使用webpack构建多页面样版,避免了使用router。

usage

Just add the options to entries.js config as follows ( base on html-webpack-plugin) :

只需要向 entries.js 文件添加配置即可,如下所示(配置文件是基于 html-webpack-plugin 的拓展):

{   
  //page html name
  filename: 'page0.html',
  //page entry js
  entry: './pages/page0',
  //commons chunks
  chunks: ['vendor'],
  //title: 'my website',
  //template:'',
  //inject:'head||body',
  //favicon:'',
  //...
  //https://github.com/jantimon/html-webpack-plugin
}

开始编码

npm run dev

构建可用于发布的代码

npm run build

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].