mirror of https://github.com/nocodb/nocodb
Pranav C
2 years ago
9 changed files with 20984 additions and 0 deletions
@ -0,0 +1,8 @@
|
||||
node_modules |
||||
*.log* |
||||
.nuxt |
||||
.nitro |
||||
.cache |
||||
.output |
||||
.env |
||||
dist |
@ -0,0 +1,42 @@
|
||||
# Nuxt 3 Minimal Starter |
||||
|
||||
Look at the [nuxt 3 documentation](https://v3.nuxtjs.org) to learn more. |
||||
|
||||
## Setup |
||||
|
||||
Make sure to install the dependencies: |
||||
|
||||
```bash |
||||
# yarn |
||||
yarn install |
||||
|
||||
# npm |
||||
npm install |
||||
|
||||
# pnpm |
||||
pnpm install --shamefully-hoist |
||||
``` |
||||
|
||||
## Development Server |
||||
|
||||
Start the development server on http://localhost:3000 |
||||
|
||||
```bash |
||||
npm run dev |
||||
``` |
||||
|
||||
## Production |
||||
|
||||
Build the application for production: |
||||
|
||||
```bash |
||||
npm run build |
||||
``` |
||||
|
||||
Locally preview production build: |
||||
|
||||
```bash |
||||
npm run preview |
||||
``` |
||||
|
||||
Checkout the [deployment documentation](https://v3.nuxtjs.org/guide/deploy/presets) for more information. |
@ -0,0 +1,5 @@
|
||||
<template> |
||||
<div><!-- Markup shared across all pages, ex: NavBar --> |
||||
<NuxtPage /> |
||||
</div> |
||||
</template> |
@ -0,0 +1,9 @@
|
||||
import {defineNuxtConfig} from 'nuxt' |
||||
|
||||
// https://v3.nuxtjs.org/api/configuration/nuxt.config
|
||||
export default defineNuxtConfig({ |
||||
modules: ['@nuxtjs/tailwindcss'], |
||||
buildModules: [ |
||||
'nuxt-vite' |
||||
] |
||||
}) |
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,14 @@
|
||||
{ |
||||
"private": true, |
||||
"scripts": { |
||||
"build": "nuxt build", |
||||
"dev": "nuxt dev", |
||||
"generate": "nuxt generate", |
||||
"preview": "nuxt preview" |
||||
}, |
||||
"devDependencies": { |
||||
"@nuxtjs/tailwindcss": "^5.1.2", |
||||
"nuxt": "3.0.0-rc.3", |
||||
"nuxt-vite": "^0.3.5" |
||||
} |
||||
} |
@ -0,0 +1,13 @@
|
||||
<template> |
||||
<span>test</span> |
||||
</template> |
||||
|
||||
<script> |
||||
export default { |
||||
name: "index" |
||||
} |
||||
</script> |
||||
|
||||
<style scoped> |
||||
|
||||
</style> |
@ -0,0 +1,8 @@
|
||||
/** @type {import('tailwindcss').Config} */ |
||||
module.exports = { |
||||
content: [], |
||||
theme: { |
||||
extend: {}, |
||||
}, |
||||
plugins: [], |
||||
} |
Loading…
Reference in new issue