chore: deploy site in netlify.app (#12)

This commit is contained in:
Amour1688
2020-06-17 19:57:37 +08:00
committed by GitHub
parent fe4f0ff48f
commit 620496f790
7 changed files with 367 additions and 59 deletions

View File

@ -1,7 +1,14 @@
<title>Vue JSX Explorer</title>
<div id="header"></div>
<div id="source" class="editor"></div>
<div id="output" class="editor"></div>
<script src="/dist/main.js"></script>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<title>Vue JSX Explorer</title>
</head>
<body>
<div id="header"></div>
<div id="source" class="editor"></div>
<div id="output" class="editor"></div>
</body>
</html>

View File

@ -2,9 +2,6 @@
"name": "@ant-design-vue/jsx-explorer",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "webpack-dev-server"
},
"dependencies": {
"monaco-editor": "^0.20.0"
},
@ -14,6 +11,7 @@
"babel-loader": "^8.1.0",
"css-loader": "^3.5.3",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"monaco-editor-webpack-plugin": "^1.9.0",
"style-loader": "^1.2.1",
"url-loader": "^4.1.0",

View File

@ -1,47 +0,0 @@
const path = require('path');
const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin');
module.exports = {
mode: 'development',
devtool: 'cheap-module-eval-source-map',
entry: './src/index.js',
output: {
path: path.resolve(__dirname, './dist'),
publicPath: '/dist/',
},
module: {
rules: [
{
test: /\.jsx?$/,
loader: 'babel-loader',
exclude: /node_modules/,
},
{
test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 10000,
name: 'dist/fonts/[name].[hash:7].[ext]',
},
},
{
test: /\.css$/,
use: [
'style-loader', 'css-loader',
],
},
],
},
devServer: {
inline: true,
open: true,
hot: true,
overlay: true,
},
plugins: [
new MonacoWebpackPlugin(),
],
node: {
fs: 'empty',
},
};