Marek Piasecki
2 years ago
11 changed files with 5353 additions and 0 deletions
@ -0,0 +1,11 @@ |
|||
<!DOCTYPE html> |
|||
<html lang="en"> |
|||
<head> |
|||
<meta charset="UTF-8" /> |
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
|||
<title>Imba Vite Template</title> |
|||
</head> |
|||
<body> |
|||
<script type="module" src="/src/index.js"></script> |
|||
</body> |
|||
</html> |
File diff suppressed because it is too large
@ -0,0 +1,16 @@ |
|||
{ |
|||
"name": "site", |
|||
"version": "0.0.0", |
|||
"type": "module", |
|||
"scripts": { |
|||
"start": "vite", |
|||
"dev": "vite", |
|||
"build": "vite build", |
|||
"preview": "vite preview" |
|||
}, |
|||
"devDependencies": { |
|||
"imba": "^2.0.0-alpha.226", |
|||
"vite": "^3.2.5", |
|||
"vite-plugin-imba": "^0.10.1" |
|||
} |
|||
} |
@ -0,0 +1,7 @@ |
|||
import { imba } from 'vite-plugin-imba'; |
|||
import { defineConfig } from 'vite'; |
|||
|
|||
export default defineConfig({ |
|||
base: '', |
|||
plugins: [imba()], |
|||
}); |
Loading…
Reference in new issue