Skip to content

Commit

Permalink
🎨 move public folder out
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidZhang73 committed Mar 12, 2022
1 parent 8562e86 commit 322c037
Show file tree
Hide file tree
Showing 12 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ dist-ssr
*.sw?

# assets
src/public/annotation/*
!src/public/annotation/example.json
src/public/config/*
!src/public/config/example.json
src/public/video/*
public/annotation/*
!public/annotation/example.json
public/config/*
!public/config/example.json
public/video/*
!src/public/video/example.mp4

src/public/dataset
public/dataset
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div align="center">
<a href="https://www.anu.edu.au/" target="_blank">
<img src="src/public/img/logo.svg" alt="ANU logo">
<img src="public/img/logo.svg" alt="ANU logo">
</a>

# Vidat
Expand Down Expand Up @@ -324,7 +324,7 @@ There will be a button shown in the side menu which will `POST` the annotation f
}
```

See [`src/public/config/example.json`](src/public/config/example.json) for am example.
See [`public/config/example.json`](src/public/config/example.json) for am example.

**Annotation**

Expand Down Expand Up @@ -429,7 +429,7 @@ See [`src/public/config/example.json`](src/public/config/example.json) for am ex
}
```

See [`src/public/annotation/example.json`](src/public/annotation/example.json) for am example.
See [`public/annotation/example.json`](src/public/annotation/example.json) for am example.

## Development

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
2 changes: 1 addition & 1 deletion vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default defineConfig({
host: '0.0.0.0',
open: true
},
publicDir: 'src/public',
publicDir: 'public',
resolve: {
alias: {
'~': path.resolve(__dirname, './src')
Expand Down

0 comments on commit 322c037

Please sign in to comment.